home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 1 / Gold Medal Software Volume 1 (Gold Medal) (1994).iso / prog / objeng.arj / SAMPLE.ARJ / MAKEFILE next >
Encoding:
Text File  |  1993-07-08  |  692 b   |  33 lines

  1. .AUTODEPEND
  2.  
  3. MYOBJS =  \
  4.   objeng.obj \
  5.   test.obj \
  6.   main.obj 
  7.  
  8. ##  pxmsg.obj \  -- For V3.01 Engine, not used in Sample
  9.  
  10. MYLIBS = \
  11.   c:\pxeng30\pxengtcl.lib 
  12.  
  13.  
  14. #-----------------------------------------------------------
  15. ## Debug versions
  16. ##      bcc -c -d -v -w -ml -H=objeng.SYM {$< }
  17. ##      tlink /v/d/s/c/P/Lc:\borlandc\lib @&&|
  18.  
  19. ## Optimized version  
  20. ##      bcc -c -d -O2 -w -ml -H=objeng.SYM {$< }
  21. ##      tlink /d/s/c/P/Lc:\borlandc\lib @&&|
  22.  
  23. .cpp.obj:
  24.         bcc -c -d -O2 -w -ml -H=objeng.SYM {$< }
  25.  
  26. objeng.exe: $(MYOBJS)
  27.         tlink /d/s/c/P/Lc:\borlandc\lib @&&|
  28. c0l.obj $(MYOBJS)
  29. test
  30. # No map file.
  31. $(MYLIBS) emu.lib mathl.lib cl.lib 
  32. |
  33.